home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 5-Fonts & Software / HyperCard 1.2.5 / Help Stacks / Help / card_122369.txt < prev    next >
Text File  |  1989-09-06  |  602b  |  34 lines

  1. -- card: 122369 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4507
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 2
  9. ----- text -----
  10. numToChar
  11.  
  12. -- part contents for background part 1
  13. ----- text -----
  14. numToChar(<number>)
  15.  
  16. Converts an ascii number to its corresponding character.
  17.  
  18. numToChar(65)        -- gives "A"
  19.  
  20. -- part of a decimal to hex conversion
  21. if digit > 9 then 
  22.     put numToChar(digit-10+65) into myChar
  23. else
  24.     put digit into myChar
  25. end if
  26.  
  27. -- part contents for background part 43
  28. ----- text -----
  29. 337,169
  30.  
  31. -- part contents for background part 44
  32. ----- text -----
  33.  
  34.